//replace dashes (-) with spaces ( ) $string="text-with-dashes"; //php string replace $test = str_replace("-", " ", $string);